object オブジェクト 型
連結リスト Linked list 連想配列 辞書 object
の
データ型 data type
以下の2つの区別はできない。
{ }を使って作成する
連結リスト Linked list 連想配列 辞書 object
new で
インスタンス
化して作成
TypeScript
object[key]
でエラー
interface 型
で定義
code:interface-object.ts
interface ParenthesesSet {
key: string
: string;
}
const map: ParenthesesSet = {
"(": ")",
"
": "
",
"{": "}",
};
wantStack.push(map
'('
);
参考
【TypeScript】 (ブラケット記法)で関数呼び出ししたら Element implicitly has an 'any' type でハマった話 - Qiita